home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr05 / xnot12a.zip / KEY.H < prev    next >
C/C++ Source or Header  |  1993-05-20  |  336b  |  15 lines

  1. /* key.h: Insert file for mg 2 functions that need to reference key pressed */
  2.  
  3. #ifndef EXTERN
  4. #define EXTERN    extern
  5. #endif
  6.  
  7. #define MAXKEY    8            /* maximum number of prefix chars */
  8.  
  9. EXTERN    struct {            /* the character sequence in a key */
  10.     int    k_count;        /* number of chars        */
  11.     KCHAR    k_chars[MAXKEY];    /* chars            */
  12. }    key;
  13. #undef    EXTERN
  14.  
  15.